home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fritz: All Fritz
/
All Fritz.zip
/
All Fritz
/
FILES
/
BUSINESS
/
PRODEVQT.LZH
/
QUOTEDAT.EXE
/
STATE.BAT
< prev
next >
Wrap
DOS Batch File
|
1991-05-01
|
577b
|
21 lines
echo off
cls
if "%1" == "" goto error
if not exist quote.%1 goto notfound
if not exist labor.%1 goto notfound
if not exist labrgrp.%1 goto notfound
echo The following 3 State Files are being copied . . .
copy quote.%1 quote.mem
copy labor.%1 labor.dbf
copy labrgrp.%1 labrgrp.ntx
quote
goto exit
:notfound
echo One or more of the QUOTE.%1, LABOR.%1 or LABRGRP.%1 files is/are missing.
goto exit
:error
cls
echo You did not enter the 2 character State Code. Please review Appendix C of
echo the QUOTE.DOC file. Please read Appendix C and try again.
:exit